home *** CD-ROM | disk | FTP | other *** search
- //
- // This is MORAY's default standard include file for POV 2.0.
- // called MRYDFLT2.INC
- //
- // It defines a standard scene environment of a grass plane on the 'floor'
- // and a blue sky that gets hazy towards the horizon.
- //
-
- #include "colors.inc"
- #include "textures.inc"
- #include "shapes.inc"
-
- plane {
- <0.0, 0.0, 1.0>, -0.01
- texture {
- pigment {
- rgb <0.0, 1.0, 0.0>
- }
- finish {
- ambient 0.4
- diffuse 0.3
- phong 0.2
- phong_size 5
- crand 0.075
- }
- }
- }
-
- sphere {
- <0, 0, 0>, 1
- texture {
- pigment {
- gradient z
- color_map {
- [0, 1 color rgb <0.9,0.9,1.0> color rgb <0.4,0.5,1.0> ]
- }
- }
- finish {
- ambient 1.0
- diffuse 0.0
- }
- }
- scale <1000,1000,1000>
- }
-
-